home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 176-200 / disk_197 / find / makefile < prev    next >
Makefile  |  1992-05-06  |  312b  |  24 lines

  1. OBJ = find.o
  2.  
  3. .c.o:
  4.     cc -E200 $*.c
  5.  
  6. find:        Makefile $(OBJ)
  7.     ln -o find $(OBJ) -lc
  8.  
  9. find.o:        find.c
  10.  
  11. find.uue:    find
  12.     uuencode >find.uue find find
  13.  
  14. shar:        shar1 shar2 shar3
  15.  
  16. shar1:
  17.     shar -a find.c makefile > find.shar1
  18.  
  19. shar2:
  20.     shar -a find.doc README > find.shar2
  21.  
  22. shar3:        find.uue
  23.     shar -a find.uue > find.shar3
  24.